home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / SourceCode / CalendarRadio.wo / CalendarRadio.wod < prev    next >
Text File  |  1996-04-23  |  1KB  |  74 lines

  1. ////////////////////////
  2. //  CalendarRadio
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6. DayFontSize: WOGenericContainer {
  7.     elementName = "font";
  8.     size = dayFontSize;
  9. };
  10.  
  11. MonthFontSize: WOGenericContainer {
  12.     elementName = "font";
  13.     size = monthFontSize;
  14. };
  15.  
  16. YearFontSize: WOGenericContainer {
  17.     elementName = "font";
  18.     size = yearFontSize;
  19. };
  20.  
  21. MonthString: WOString {
  22.     value = currentMonthDescr;
  23. };
  24.  
  25. YearString: WOString {
  26.     value = currentYear;
  27. };
  28.  
  29. WeekRepetition: WORepetition {
  30.     count = 6;
  31.     index = rowIndex;
  32. };
  33.  
  34. DayRepetition: WORepetition {
  35.     count = 7;
  36.     index = columnIndex;
  37. };
  38.  
  39. DayString: WOString {
  40.     value = currentDay;
  41. };
  42.  
  43. DayRadio: WORadioButton {
  44.     name = "DayChoice";
  45.     value = currentDay;
  46.     selection = dayChoice;
  47. };
  48.  
  49. DayConditional: WOConditional {
  50.     condition = doDay;
  51. };
  52.  
  53. ButtonConditional: WOConditional {
  54.     condition = showButtons;
  55. };
  56.  
  57. CalendarTable: WOGenericContainer {
  58.     elementName = "table";
  59.     border = borderSize;
  60.     cellpadding = cellPadding;
  61.     cellspacing = cellSpacing;
  62. };
  63.  
  64. CalendarHeading: WOGenericContainer {
  65.     elementName = "th";
  66.     colspan = 7;
  67. };
  68.  
  69. DayCell: WOGenericContainer {
  70.     elementName = "td";
  71.     align = cellAlignment;
  72. };
  73.  
  74.